Web.config

<configuration>
    <system.web>
        <trace enabled="true" pageOutput="true" />
    </system.web>
</configuration>

VB

Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)
    Handles Me.Load 'Wszystko w jednym wierszu!
        Trace.Write("To jest komunikat z POCZTKOWEJ czci metody Page_Load!")
End Sub
